:root {
    --anuncio-text-primary: #1E2F4B; 
    --anuncio-text-secondary: #687387;
    --anuncio-green-primary: #5FCF2F;
    --anuncio-green-icon: #129400; 
    --anuncio-green-light: #F2FFED;
    --anuncio-border-light: #D9D9D9;

    --font-weight-bold: 600;
    --font-weight-regular: 400;
}

.detalhe-anuncio-section-title {
    color: var(--anuncio-text-primary);
    font-size: 36px;
    font-weight: var(--font-weight-bold);
}

.detalhe-anuncio-title-medium {
    color: var(--anuncio-text-primary);
    font-weight: var(--font-weight-bold);
}

.detalhe-anuncio-content-text {
    color: var(--anuncio-text-secondary);
    font-size: 20px;
    font-weight: var(--font-weight-regular);
    line-height: 31px;
}

.detalhe-anuncio-icon-color {
    color: var(--anuncio-green-icon);
}

.detalhe-anuncio-bordered-card {
    border: 1px solid var(--anuncio-border-light);
    border-radius: 16px;
    background-color: transparent;
    position: relative;
}

/* APRESENTAÇÃO */
.detalhe-anuncio-card {
    border: 1px solid var(--anuncio-border-light);
    border-radius: 16px;
    background-color: transparent;
    position: relative;
}

.detalhe-anuncio-card-title {
    color: var(--anuncio-text-primary);
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
}

.detalhe-anuncio-apresentacao-text {
    color: var(--anuncio-text-primary);
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    line-height: 31px;
}

.detalhe-anuncio-padding-bottom-valor {
    padding-bottom: 160px !important;
}

/* VALOR */
.detalhe-anuncio-valor-container {
    position: absolute;
    bottom: 0;
    left: 0;
}

.detalhe-anuncio-valor-box {
    background: var(--anuncio-green-light);
    border-radius: 20px;
    height: 128px;
}

.detalhe-anuncio-valor-titulo {
    color: var(--anuncio-text-primary);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
}

.detalhe-anuncio-valor-texto {
    color: var(--anuncio-green-primary);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}

.detalhe-anuncio-valor-num {
    margin-left: 8px;
}

/* CARACTERÍSTICAS ANUNCIO */
.detalhe-anuncio-nome {
    color: var(--anuncio-text-primary);
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 11px;
}

.detalhe-anuncio-endereco {
    margin: 0;
}

.detalhe-anuncio-caracteristicas-box {
    border: 1px solid var(--anuncio-border-light);
    border-radius: 8px;
}

.detalhe-anuncio-caracteristicas-icon {
    font-size: 24px;
}

.detalhe-anuncio-caracteristicas-text {
    color: var(--anuncio-text-primary);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
}

.detalhe-anuncio-separator {
    width: 1px;
    height: 60px;
    background: var(--anuncio-border-light);
}

/* CONTATOS */
.detalhe-anuncio-contatos-card {
    border: 1px solid var(--anuncio-border-light);
    border-radius: 16px;
    background-color: transparent;
    position: relative;
}

.detalhe-anuncio-prop-label {
    color: var(--anuncio-text-primary);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
}

.detalhe-anuncio-prop-nome {
    color: var(--anuncio-text-primary);
    font-size: 24px;
    font-weight: var(--font-weight-bold);
}

.detalhe-anuncio-contato-icon-box {
    width: 34px;
    height: 29px;
    background: rgba(95, 207, 47, 0.10);
}

.detalhe-anuncio-contato-icon {
    color: var(--anuncio-green-primary);
    font-size: 16px;
}

.detalhe-anuncio-contato-text {
    color: var(--anuncio-text-primary);
    font-size: 16px;
    font-weight: 500;
}

/* Botão do WhatsApp */
.detalhe-anuncio-whatsapp-btn {
    background: var(--anuncio-green-primary);
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    width: 100%;
}

.detalhe-anuncio-benfeitoria-list {
    list-style: none;
    padding: 0;
}

.detalhe-anuncio-benfeitoria-item {
    margin-bottom: 8px;
}


/* FOTOS ANÚNCIO */
.gallery-container {
    display: flex;
    gap: 26px; 
    align-items: flex-start;
    padding: 15px;
    background: #F5F5F5;
    border-radius: 16px;
    width: 90%; 
    margin: 0 auto;
}

.main-image-wrapper {
    flex-shrink: 0;
    border-radius: 16px;
}

.main-image-wrapper img {
    width: 580px;
    height: 475px;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 992px) {
  .main-image-wrapper img {
    width: 100% !important;
    height: auto !important;
  }
}

.side-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 220px;
}

.side-gallery img {
    width: 100%;
    height: 147px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
}

.view-all-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    border-radius: 14px;
    cursor: pointer;
}

.image-slot {
    position: relative;
}

/* Especifições */
.detalhe-anuncio-spec-item {
    gap: 13px;
}

.detalhe-anuncio-spec-label {
    color: var(--anuncio-green-icon);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    white-space: nowrap; 
}

.detalhe-anuncio-spec-value {
    color: var(--anuncio-text-primary);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}
