.vtsg-banner-imoveis {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.vtsg-banner-imoveis-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.vtsg-banner-imoveis-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    color: #fff;
    margin: 0 auto;
    padding: 60px 40px 60px 40px;
    z-index: 2;
    flex-grow: 1;
}

h2.vtsg-banner-imoveis-content-title {
    max-width: 600px;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0 0 40px 0;
}

h2.vtsg-banner-imoveis-content-title a {
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    text-decoration: none;
}

.vtsg-banner-imoveis-search-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 600px;
}

/* Tabs */
.vtsg-banner-imoveis-tabs {
    display: flex;
    gap: 20px;
}

.vtsg-banner-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0 0 5px 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.vtsg-banner-tab.active,
.vtsg-banner-tab:hover {
    color: #fff;
    border-bottom: 2px solid #fff;
}

/* Search Bar */
.vtsg-banner-imoveis-search-bar {
    width: 100%;
    background: #fff;
    border-radius: 4px;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.vtsg-banner-search-input-group {
    display: flex;
    align-items: center;
    width: 100%;
}

.vtsg-banner-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333;
    outline: none;
}

.vtsg-banner-search-input::placeholder {
    color: #999;
}

.vtsg-banner-search-button {
    background: var(--e-global-color-primary, #C08D63);
    /* Cor padrão ou variável global */
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.vtsg-banner-search-button:hover {
    filter: brightness(1.1);
}

.vtsg-banner-search-button i,
.vtsg-banner-search-button svg {
    width: 20px;
    height: 20px;
    font-size: 20px;
    fill: currentColor;
    color: currentColor;
    display: inline-block;
}

/* Mobile */
@media (max-width: 768px) {
    h2.vtsg-banner-imoveis-content-title {
        font-size: 2rem;
    }
}