/* =========================================================
   FRONTEND STYLESHEET - PLATAFORMA DE IMÓVEIS
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

html, body {
    margin: 0;
    padding: 0;
    overflow-x: clip;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color var(--transition-base), color var(--transition-base);
}

/* =========================================================
   HEADER & TOP BAR (CONFORME PRINT ANEXO)
   ========================================================= */
.site-header-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background-color: var(--bg-surface);
}

.header-top-bar {
    background-color: var(--top-bar-bg, #3b50b2);
    color: var(--top-bar-color, #ffffff);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 8px 16px;
    text-align: center;
    letter-spacing: 0.10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: static !important;
}

@media (max-width: 768px) {
    .header-top-bar {
        font-size: 0.72rem;
        line-height: 1.4;
        padding: 6px 10px;
    }
}

.main-navbar {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: static !important;
    transition: background-color var(--transition-base), border-color var(--transition-base);
}

.brand-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
    padding: 2px 0;
    line-height: 1.2;
    flex-shrink: 0;
}

.brand-logo-img {
    max-height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0;
}

@media (max-width: 768px) {
    .main-navbar {
        padding: 6px 0;
        min-height: 52px;
    }
    .brand-logo-img {
        max-height: 36px;
    }
}

/* BARRA DE PESQUISA & FILTRO FIXA INTEGRADA NO HEADER */
.header-search-form {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 110px;
    max-width: 360px;
    margin: 0;
}

.header-search-input-wrap {
    flex: 1 1 auto;
    min-width: 65px;
}

.header-search-input {
    width: 100%;
    height: 36px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12.5px;
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.header-search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(59, 80, 178, 0.15);
}

.header-filter-btn {
    height: 36px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.header-filter-btn:hover {
    background: var(--bg-muted);
    border-color: #cbd5e1;
}

.header-search-btn {
    height: 36px;
    width: 38px;
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    flex-shrink: 0;
}

.header-search-btn:hover {
    background-color: var(--color-primary-hover);
}

/* LINKS DE NAVEGAÇÃO DO HEADER */
.header-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-nav-links a,
.header-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    padding: 4px 4px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: color var(--transition-fast);
}

.header-nav-links a:hover,
.header-nav-link:hover {
    color: var(--color-primary);
}

.nav-divider {
    color: #94a3b8;
    font-weight: 400;
    margin: 0 2px;
    flex-shrink: 0;
    font-size: 11px;
}

.theme-toggle-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
    background: var(--bg-muted);
    border-color: #cbd5e1;
}

.btn-header-login {
    height: 36px;
    padding: 0 15px;
    background-color: var(--color-primary);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color var(--transition-fast);
}

.btn-header-login:hover {
    background-color: var(--color-primary-hover);
    color: #ffffff !important;
}

.btn-header-register {
    height: 36px;
    padding: 0 15px;
    background-color: #00a859;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color var(--transition-fast);
}

.btn-header-register:hover {
    background-color: #008f4c;
    color: #ffffff !important;
}

@media (max-width: 1399px) {
    .header-search-form {
        max-width: 250px;
    }
    .header-nav-links {
        font-size: 11.5px;
        gap: 2px;
    }
    .header-nav-links a, .header-nav-link {
        padding: 3px 2px;
    }
    .btn-header-login, .btn-header-register {
        padding: 0 12px;
        font-size: 11.5px;
    }
}

@media (max-width: 1199px) {
    .header-search-form {
        max-width: 160px;
    }
    .header-filter-btn span {
        display: none;
    }
    .header-filter-btn {
        padding: 0 8px;
    }
}

/* =========================================================
   HEADER MOBILE & OFFCANVAS DRAWER (EXATO CONFORME PRINTS)
   ========================================================= */
.btn-mobile-filters {
    height: 38px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 13.5px;
    font-weight: 600;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.btn-mobile-filters:hover {
    background-color: var(--bg-muted);
    border-color: #cbd5e1;
}

.btn-mobile-hamburger {
    height: 38px;
    width: 44px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.btn-mobile-hamburger:hover {
    background-color: var(--bg-muted);
    border-color: #cbd5e1;
}

/* OFFCANVAS DRAWER */
.mobile-nav-offcanvas {
    width: 330px !important;
    max-width: 88vw !important;
    background-color: var(--bg-surface) !important;
    border-left: 1px solid var(--border-subtle) !important;
    box-shadow: -6px 0 25px rgba(0, 0, 0, 0.12) !important;
}

.drawer-divider {
    border-bottom: 1px solid var(--border-subtle);
    width: 100%;
}

.btn-close-drawer {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.btn-close-drawer:hover {
    transform: scale(1.15);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 0;
}

.mobile-nav-link {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.mobile-drawer-bottom {
    margin-top: auto;
}

.btn-drawer-login {
    height: 40px;
    padding: 0 22px;
    background-color: #3b50b2;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    min-width: 105px;
    transition: opacity var(--transition-fast);
}

.btn-drawer-login:hover {
    opacity: 0.9;
    color: #ffffff !important;
}

.btn-drawer-register {
    height: 40px;
    padding: 0 22px;
    background-color: #009640;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    min-width: 130px;
    transition: opacity var(--transition-fast);
}

.btn-drawer-register:hover {
    opacity: 0.9;
    color: #ffffff !important;
}

.drawer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #1e3a8a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

[data-theme="dark"] .drawer-social-icon {
    background-color: var(--bg-muted);
    color: var(--text-primary);
}

.drawer-social-icon:hover {
    background-color: #e2e8f0;
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* =========================================================
   VITRINE EM ABAS PÍLULAS (VITRINE-NAV-PILLS)
   ========================================================= */
.vitrine-nav-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 6px;
    margin-bottom: 24px;
}
.vitrine-nav-wrapper::-webkit-scrollbar {
    display: none;
}
.vitrine-nav-pills {
    display: inline-flex;
    background: var(--bg-muted);
    padding: 6px;
    border-radius: 14px;
    gap: 6px;
    flex-wrap: nowrap;
    border: 1px solid var(--border-subtle);
}
.vitrine-nav-pills .nav-link {
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 16px;
    white-space: nowrap;
    border: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    cursor: pointer;
}
.vitrine-nav-pills .nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.5);
}
[data-theme="dark"] .vitrine-nav-pills .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
}
.vitrine-nav-pills .nav-link.active {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 80, 178, 0.3);
}
.vitrine-nav-pills .tab-count-badge {
    font-size: 0.725rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    background: rgba(148, 163, 184, 0.25);
    color: var(--text-primary);
}
.vitrine-nav-pills .nav-link.active .tab-count-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* =========================================================
   CARDS DE OPORTUNIDADES & ANÚNCIOS
   ========================================================= */
.anuncio-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.anuncio-card:hover {
    transform: var(--card-hover-transform);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.anuncio-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%; /* 16:9 Aspect Ratio */
    background: var(--bg-muted);
    overflow: hidden;
}

.anuncio-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.anuncio-card:hover .anuncio-card-img {
    transform: scale(1.05);
}

.anuncio-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.anuncio-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.anuncio-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.anuncio-card-location {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.anuncio-card-price-box {
    margin-top: auto;
    background: var(--bg-muted);
    border-radius: var(--radius-md);
    padding: 10px 12px;
}

.anuncio-price-label {
    font-size: 0.725rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}

.anuncio-price-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
}

/* =========================================================
   FOOTER (CONFORME PRINT ANEXO)
   ========================================================= */
.main-footer {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 48px 0 0 0;
    margin-top: 60px;
    color: var(--text-secondary);
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-contact-item {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--bg-muted);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* CARD DE NEWSLETTER NO FOOTER */
.footer-newsletter-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.footer-newsletter-card .form-control,
.footer-newsletter-card .form-select {
    background-color: var(--bg-input);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
}

.footer-newsletter-card .form-control:focus,
.footer-newsletter-card .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(59, 80, 178, 0.15);
}

.footer-newsletter-card .form-label {
    font-size: 0.775rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.btn-newsletter-submit {
    background-color: #0d1326;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

[data-theme="dark"] .btn-newsletter-submit {
    background-color: var(--color-primary);
}

.btn-newsletter-submit:hover {
    background-color: var(--color-primary-hover);
}

/* LINKS ÚTEIS EM CARDS / PÍLULAS */
.footer-link-pill {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.footer-link-pill:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateX(4px);
    background: var(--bg-muted);
}

.footer-bottom-bar {
    background-color: #0b0f19;
    color: #94a3b8;
    font-size: 0.775rem;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    margin-bottom: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================================================
   CARDS ESPECIALIZADOS COMPREI PGFN & VITRINES
   ========================================================= */
.showcase-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border-subtle, #e2e8f0) !important;
    border-radius: 16px;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.22s ease;
    display: flex;
    flex-direction: column;
}
.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px -4px rgba(15, 23, 42, 0.12), 0 4px 10px -2px rgba(15, 23, 42, 0.05);
    border-color: #cbd5e1 !important;
}
.showcase-card-img {
    height: 195px;
    object-fit: cover;
    width: 100%;
}
.showcase-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    z-index: 10;
    line-height: 1.1;
    text-align: center;
}
.showcase-card-title {
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
    line-height: 1.35;
    height: 2.7em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
}
.showcase-card-address {
    font-size: 0.775rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.showcase-info-box {
    font-size: 0.775rem;
    background: var(--bg-tertiary, #f8fafc);
    border: 1px solid var(--border-subtle, #e2e8f0);
    padding: 7px 10px;
    border-radius: 8px;
}
.custom-arrow-gradient-sm {
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    font-size: 0.75rem;
}
.showcase-comitente-logo {
    max-height: 24px;
    max-width: 85px;
    object-fit: contain;
    background: transparent;
}

/* =========================================================
   WIDGETS FLUTUANTES & BOTÃO VOLTAR AO TOPO
   ========================================================= */
.floating-widgets-stack {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-widgets-stack.has-chat-widget {
    bottom: 160px;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease, opacity 0.3s ease, visibility 0.3s ease;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.floating-btn-scroll {
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
}

.floating-btn-scroll.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn-scroll.visible:hover {
    transform: translateY(-3px) scale(1.08);
}

.floating-btn-whatsapp {
    background-color: #25D366;
    color: #ffffff !important;
    font-size: 1.7rem;
}

.whatsapp-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.6;
    z-index: -1;
    animation: whatsappPulse 2.2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.35);
        opacity: 0;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .floating-widgets-stack {
        bottom: 20px;
        right: 18px;
        gap: 10px;
    }
    .floating-widgets-stack.has-chat-widget {
        bottom: 95px;
        right: 18px;
    }
    .floating-btn {
        width: 46px;
        height: 46px;
    }
    .floating-btn-whatsapp {
        font-size: 1.5rem;
    }
    .floating-btn-scroll {
        font-size: 1.1rem;
    }
}

/* =========================================================
   CARDS DE STATUS INATIVO (VENDIDO, RETIRADO, CANCELADO, AGUARDANDO NOVAS DATAS)
   ========================================================= */
.showcase-card-inactive-img {
    filter: grayscale(100%) contrast(85%) !important;
    -webkit-filter: grayscale(100%) contrast(85%) !important;
}

.showcase-status-stamp-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    pointer-events: none;
    padding: 10px;
}

.showcase-status-stamp {
    border: 3.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 6px 18px;
    color: #ffffff !important;
    font-weight: 800;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-6deg);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    white-space: nowrap;
    line-height: 1.2;
    max-width: 90%;
    text-align: center;
}

.showcase-btn-muted {
    background-color: #788699 !important;
    border-color: #788699 !important;
    color: #ffffff !important;
}

.showcase-btn-whatsapp-muted {
    background-color: #728a7e !important;
    border-color: #728a7e !important;
    color: #ffffff !important;
    opacity: 0.9;
}


