/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* BODY */
body {
    background: white;
    font-family: "Inter", "Inter Tight", Helvetica, sans-serif;
    color: #222;
}

/* HEADER */
.kad-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 40px;
    z-index: 900;
    background: transparent;
    transition: all 0.3s ease;
}

.kad-header.scrolled {
    background: #fff;
    padding: 8px 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: 1500px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 95px;
    padding-left: 42px;
    transition: height .3s ease;
}

.kad-header.scrolled .header-logo img {
    height: 60px;
}

.header-title {
    font-weight: 700;
    color: #444;
    font-size: 1.05rem;
}

.header-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ff8040;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    background: rgba(0,0,0,0.04);
    text-decoration: none;
    transition: all .25s ease;
    font-size: 1.05rem;
}

/* Hover genérico */
.social-link:hover {
    transform: translateY(-2px);
    background: #ef6e21;
    color: #fff;
}

/* Cores específicas (opcional, refinamento) */
.social-link.whatsapp:hover {
    background: #1dc734;
}

.social-link.instagram:hover {
    background: #d62976;
}

.social-link.tiktok:hover {
    background: #000;
}

.social-link.email:hover {
    background: #444;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1500px;
    margin: 68px auto 40px;
    padding: 85px 40px 50px;
}

/* PROPERTY HEADER */
.property-header {
    width: 100%;
    margin-bottom: 28px;
}

.property-header-tabs {
    margin-bottom: 14px;
}

.container-inner {
    max-width: 1500px;
    margin: auto;
    padding: 0 4px;
}

/* TABS */
.property-header-tabs-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.property-header-btn {
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 600;
    color: #333;
}

.property-header-btn.active {
    background: #ef6e21;
    color: #fff;
    border-color: #ef6e21;
}

.property-header-btn:hover {
    border-color: #ef6e21;
    color: #000000;
}

/* GALLERY */
.container-gallery {
    padding: 0;
    width: 100%;
}

.property-gallery {
    width: 100%;
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.property-gallery .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.property-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* GALLERY BUTTONS */
.property-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #ef6e21;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.property-gallery-prev {
    left: 12px;
}

.property-gallery-next {
    right: 12px;
}

/* MAP/STREET */
.map-full {
    width: 100%;
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
    background: #eee;
}

/* LAYOUT DETAILS */
.layout-details {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 28px;
    align-items: start;
}

.left-col,
.right-col {
    width: 100%;
}

/* PANELS */
.panel {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    margin-top: 20px;
}

.panel h2 {
    color: #ef6e21;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 1.25rem;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 18px;
}

.feature-item {
    background: #fafafa;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef6e21;
}

.feature-label {
    font-weight: 600;
    color: #555;
}

.feature-value {
    font-weight: 700;
    color: #222;
}

.features-grid .feature-icon svg {
    fill: none !important;
    stroke: #ef6e21;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.document-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 18px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all .2s ease;
}

.document-card:hover {
    border-color: #ef6e21;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.document-icon {
    width: 55px;
    height: 55px;
    background: #ffe4d4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-icon i {
    font-size: 26px;
    color: #ef6e21;
}

.document-label {
    text-align: center;
    font-size: 14px;
    color: #444;
    word-break: break-word;
}

/* GLOSSARY */
.glossary {
    padding: 16px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.glossary-icon {
    color: #ef6e21;
}

.glossary-text {
    margin-left: 36px;
    margin-bottom: 6px;
}

/* 🔥 NOVO — Laranja para SVG da matrícula */
.glossary-icon svg {
    color: #ef6e21;
    stroke: #ef6e21;
}

/* STATUS */
.property-status {
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    margin: 21px 0px 10px 0px;
}

/* RIGHT STICKY */
.sticky-wrapper {
    position: relative;
}

#stickyBox {
    position: sticky;
    top: 130px;
}

.sticky-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.orange-border {
    border-left: 5px solid #ef6e21;
}

/* PRICE */
.price-block .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px;
}

.price-label {
    font-weight: 600;
    color: #ef6e21;
    margin: 5px;
}

.price-value {
    font-weight: 700;
    color: #111;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 6px;
}

.count-item {
    text-align: center;
}

.count-value {
    font-size: 1.10rem;
    font-weight: 800;
}

.count-label {
    font-size: 0.75rem;
    color: #666;
}

.closure-row {
    margin-bottom: 10px;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .layout-details {
        grid-template-columns: 1fr;
    }

    #stickyBox {
        position: static;
        top: auto;
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .property-gallery {
        height: 320px;
    }

    .container {
        padding: 85px 16px 40px;
    }
}

#div_imagens {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
}

#imagem_fundo {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#imagem_fundo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(18px) brightness(0.55);
    transform: scale(1.15);
}

#imagem_pequena {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#imagem_pequena img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* Garantir que Swiper não aplique fundo preto */
.property-gallery {
    background: transparent !important;
}

.metragem-row {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.internal-row {
    margin-top: 10px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    gap: 6px;
}

.feature-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: -4px;
}

.feature-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #EF6E21;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    line-height: 1;
}

.feature-value {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}

.obsolete-warning {
    background: #ffe6e1;
    border-left: 5px solid #ef6e21;
    color: #b1441f;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 1rem;
}
.obsolete-warning i {
    color: #ef6e21;
    font-size: 1.2rem;
}

/* FIXA A COLUNA DIREITA NO GRID */
.sticky-side {
    position: sticky;
    top: 120px;
    height: fit-content;
    align-self: start; /* fundamental para sticky funcionar em grid */
}

/* --- GRID DO LEILÃO (DUAS COLUNAS) --- */
.auction-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 5px !important;            /* espaço entre colunas */
    margin-top: 15px !important;
}

/* coluna individual */
.auction-col {
    background: #fafafa;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Separação visual leve */
.auction-columns.has-3 .auction-col {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.auction-columns.has-3 .auction-col:last-child {
    border-bottom: none;
}

.auction-columns.has-3 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.auction-columns.has-3 .auction-third {
    grid-column: 1 / span 2;
}

/* titulo dentro da coluna */
.auction-col-title {
    color: #ef6e21;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* linhas internas */
.auction-info-row {
    display: flex;
    margin: 8px 0;
}

.auction-info-row.spaced {
    margin: 10px 0;
}

.auction-label {
    font-weight: 700;
    color: #555;
    font-size: 0.75rem;
}

.auction-value {
    font-weight: 800;
    color: #1a1a1a;
    font-size: 0.75rem;
    margin-left: 5px;
}

.auction-col.expired {
    border-radius: 8px;
    text-decoration: line-through;
    opacity: 0.7;
}

.auction-col.expired .auction-value,
.auction-col.expired .auction-label,
.auction-col.expired .auction-col-title {
    color: #999;
}

/* Mobile: vira 1 coluna só */
@media (max-width: 900px) {
    .auction-columns {
        grid-template-columns: 1fr !important;
    }
}

.form-group {
    margin-bottom: 10px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #26289e38;
    font-family: inherit;
    font-size: 0.75rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ef6e21;
}

.btn-interest {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: #1DC734;
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .2s ease;
}

.btn-interest:hover {
    background: #18a32a;
}

/* ===== BOTÃO FLUTUANTE INTERESSE ===== */
.interest-fab {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 999;
    background: #ef6e21;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(239,110,33,0.45);
    transition: all .25s ease;
}

.interest-fab i {
    font-size: 1.1rem;
}

.interest-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(239,110,33,0.6);
}

@media (max-width: 600px) {
    .interest-fab .fab-label {
        display: inline !important;
    }
}

/* ===== MODAL INTERESSE ===== */
.interest-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.interest-modal.open {
    display: block;
}

.interest-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
}

.interest-modal-content {
    position: relative;
    max-width: 420px;
    width: calc(100% - 32px);
    background: #fff;
    margin: 25vh auto;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: modalIn .25s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.interest-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    cursor: pointer;
    color: #777;
}

.interest-modal h3 {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Impede o textarea de quebrar o modal */
#messageModal {
    resize: vertical;      /* só cresce para baixo */
    max-height: 140px;     /* 🔥 limite visual */
    min-height: 80px;
    overflow-y: auto;      /* scroll interno */
}


/* STREET VIEW — não reservar espaço visual */
.property-header-street .map-full {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* STREET VIEW — mensagem no lugar do iframe */
.street-message-static {
    width: 100%;
    height: 520px; /* igual map / galeria */    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #f6f6f6;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
}

.street-message-static h3 {
    font-size: 1.3rem;
    color: #333;
    font-weight: 700;
}

.street-message-static p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.street-icon {
    font-size: 52px;
    color: #ef6e21;
}

.auction-value-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.auction-discount {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2e9e57;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.auction-discount .arrow {
    font-size: 0.65rem;
    color: #2e9e57;
}

.payment-panel {
    margin-top: 20px;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 6px;
}

.payment-icon {
    font-size: 1.6rem;
    color: #ef6e21;
}

.payment-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    line-height: 1.4;
}

.kad-footer {
    background-color: #f16e22;
    margin-top: auto;
    padding: 14px 40px;
}

.kad-footer p {
    font-size: 0.9em;
    font-weight: 100;
    color: rgba(255,255,255,0.5);
    text-align: left;
    margin: 0;
    padding-left: 80px;
}

.kad-footer p strong {
    font-weight: 700;
}

/* ============================================================
   WHATSAPP ICON
============================================================ */

.whatsapp-elementor {
    position: fixed;
    bottom: 90px;
    right: 32px;
    z-index: 1000;
    margin-right: -8px;
}

.elementor-icon-wrapper {
    display: inline-block;
}

/* SVG */
.elementor-icon svg {
    width: 76px;
    height: 76px;
    display: block;
}

/* Botão */
.whatsapp-elementor .elementor-icon {
    margin-right: -10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: whatsappPulse 2.8s ease-in-out infinite;
}

/* Pausa a animação quando o usuário interage */
.whatsapp-elementor .elementor-icon:hover {
    animation-play-state: paused;
    opacity: 1;
}

.btn-participar {
    width: 100%;
    margin-top: 14px;
    padding: 14px;
    border-radius: 10px;
    background: #ef6e21;
    color: #fff;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s ease;
}

.btn-participar i {
    font-size: 1rem;
}

.btn-participar:hover {
    background: #d85f1d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239,110,33,0.4);
}

.auction-social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: stretch;
}

.auction-social {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .2s ease;
    background-clip: padding-box;
    white-space: nowrap;
}

.auction-social i {
    font-size: 1rem;
}

/* WhatsApp */
.auction-social.whatsapp {
    background: #e9f8ee;
    color: #1dc734;
}

.auction-social.whatsapp:hover {
    background: #1dc734;
    color: #fff;
}

/* Instagram */
.auction-social.instagram {
    background: #fbe9f1;
    color: #d62976;
}

.auction-social.instagram:hover {
    background: #d62976;
    color: #fff;
}


/* Animação */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.92;
    }

    40% {
        transform: scale(1.05);
        opacity: 1;
    }

    60% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.92;
    }
}
/* ======================================
   ANIMAÇÃO ELEMENTOR — GROW
====================================== */
.elementor-animation-grow {
    transition: transform 0.3s ease;
}

.elementor-animation-grow:hover {
    transform: scale(1.1);
}

/* ============================================================
   RESPONSIVIDADE GLOBAL — BLOCO ÚNICO E COESO
============================================================ */

/* ============================================================
   GLOBAL (proteção contra overflow em qualquer largura)
============================================================ */
@media (max-width: 9999px) {
    html, body {
        overflow-x: hidden;
    }

    img, svg {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .container,
    .layout-details,
    .left-col,
    .right-col,
    .panel,
    .feature-item,
    .auction-columns,
    .auction-col,
    .payment-content,
    .document-card {
        min-width: 0;
    }

    /* ============================================================
    CORREÇÃO DE OVERFLOW PARA LINKS E TEXTOS LONGOS
    ============================================================ */
    .panel,
    .panel p,
    .panel a,
    .panel span,
    .panel li,
    .panel div,
    .document-label,
    .payment-text {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .panel a {
        max-width: 100%;
    }

}

/* ============================================================
   DESKTOP MÉDIO (≤1200px)
============================================================ */
@media (max-width: 1200px) {

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .layout-details {
        grid-template-columns: 60% 40%;
        gap: 22px;
    }

    .features-grid {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
    }

    .documents-grid {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
    }

    .auction-columns {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .auction-info-row {
        margin: 8px 0;
    }

    .interest-fab {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .whatsapp-elementor {
        bottom: 90px;
        right: 30px;
    }

    .elementor-icon {
        width: 64px;
        height: 64px;
    }

    .elementor-icon svg {
        width: 64px;
        height: 64px;
    }

    .kad-footer {
        padding: 14px 40px;
    }

    .kad-footer p {
        padding-left: 80px;
    }
}

/* ============================================================
   TABLET / SMALL DESKTOP (≤900px)
============================================================ */
@media (max-width: 900px) {

    .layout-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sticky-side {
        position: static;
        top: auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .documents-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .auction-columns {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .auction-col {
        padding: 8px 6px;
    }

    .auction-info-row {
        margin: 6px 0;
        align-items: center;
    }

    .auction-label {
        font-size: 0.85rem;
    }

    .auction-value {
        font-size: 0.95rem;
    }

    .interest-fab {
        bottom: 24px;
        right: 22px;
    }

    .elementor-icon {
        width: 56px;
        height: 56px;
    }

    .elementor-icon svg {
        width: 56px;
        height: 56px;
    }

    .kad-footer {
        padding: 12px 28px;
    }

    .kad-footer p {
        padding-left: 24px;
    }
}

/* ============================================================
   TABLET / MOBILE (≤768px)
============================================================ */
@media (max-width: 768px) {

    .kad-header {
        padding: 10px 14px;
    }

    .kad-header.scrolled .header-logo img {
        height: 40px;
    }    

    .header-container {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    /* Linha superior: voltar + logo */
    .header-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-icon {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
    }

    .header-logo img {
        height: 42px;
        padding-left: 0;
    }

    /* Título em linha própria */
    .header-title {
        margin-top: 4px;
        font-size: 0.75rem;
        text-align: center;
        line-height: 1.2;
    }

    /* Ícones sociais embaixo */
    .header-social {
        margin-top: 6px;
        gap: 12px;
    }

    .social-link {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }

    .container {
        padding-top: 60px;
        padding-left: 16px;
        padding-right: 16px;
        margin-top: 60px;
    }

    .property-gallery,
    .map-full,
    .street-message-static,
    #div_imagens {
        height: 350px;
    }

    .property-header-tabs-group {
        gap: 8px;
        flex-wrap: wrap;
    }

    .property-header-btn {
        padding: 8px 10px;
        font-size: 0.82rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .feature-row {
        gap: 8px;
    }

    .payment-content {
        flex-wrap: wrap;
        gap: 8px;
    }

    .auction-columns {
        gap: 10px;
    }

    .auction-label {
        font-size: 0.82rem;
    }

    .auction-value {
        font-size: 0.95rem;
    }

    .countdown-grid {
        gap: 6px;
    }

    .kad-footer {
        padding: 12px 20px;
    }

    .kad-footer p {
        padding-left: 0;
        text-align: center;
        font-size: 0.9rem;
    }

    .whatsapp-elementor {
        bottom: 70px;
        margin-right: -12px !important;
    }

    .elementor-icon {
        width: 64px;
        height: 64px;
    }

    .elementor-icon svg {
        width: 55px;
        height: 55px;
    }    
}

/* ============================================================
   MOBILE GRANDE (≤600px)
============================================================ */
@media (max-width: 600px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
        margin-top: 60px;
    }

    .property-gallery,
    .map-full,
    .street-message-static,
    #div_imagens {
        height: 320px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .auction-columns {
        gap: 8px;
    }

    .interest-fab {
        bottom: 20px;
        right: 18px;
        padding: 10px 12px;
        font-size: 0.92rem;
    }

    .fab-label {
        display: inline-block;
    }
}

/* ============================================================
   MOBILE PEQUENO (≤480px)
============================================================ */
@media (max-width: 480px) {

    .container {
        padding-top: 56px;
        padding-left: 12px;
        padding-right: 12px;
        margin-top: 60px;
    }

    .header-logo img {
        height: 40px;
        padding-left: 8px;
    }

    .header-title {
        font-size: 0.85rem;
    }

    .property-gallery,
    .map-full,
    .street-message-static,
    #div_imagens {
        height: 300px;
    }

    .property-gallery-btn {
        width: 40px;
        height: 40px;
    }

    .property-gallery-btn svg {
        width: 18px;
        height: 18px;
    }

    .property-header-tabs-group {
        gap: 6px;
    }

    .property-header-btn {
        padding: 6px 8px;
        font-size: 0.75rem;
    }

    .panel {
        padding: 12px;
    }

    .panel h2 {
        font-size: 1rem;
    }

    .feature-icon {
        flex: 0 0 26px;
        width: 26px;
        height: 26px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-value {
        font-size: 0.9rem;
    }

    .auction-label {
        font-size: 0.78rem;
    }

    .auction-value {
        font-size: 0.9rem;
        margin-left: 10px;        
    }

    .count-value {
        font-size: 0.9rem;
    }

    .count-label {
        font-size: 0.65rem;
    }

    .interest-fab {
        bottom: 16px;
        right: 16px;
        padding: 10px;
        font-size: 0.75rem;
    }

    .fab-label {
        display: none;
    }

    .whatsapp-elementor {
        bottom: 65px;
        margin-right: -7px !important;
    }

    .elementor-icon {
        width: 55px;
        height: 55px;
    }

    .elementor-icon svg {
        width: 45px;
        height: 45px;
    }

    .kad-footer {
        padding: 10px 12px;
    }

    .kad-footer p {
        padding-left: 0;
        text-align: center;
        font-size: 0.85rem;
        margin: 0;
    }

    .document-card {
        padding: 10px;
        gap: 8px;
    }

    .document-icon {
        width: 40px;
        height: 40px;
    }

    .document-label {
        font-size: 0.8rem;
    }
}
