/* ===== HERO ===== */
.inv-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inv-hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.inv-hr {
    width: 110px;
    border: 2px solid #fff;
    opacity: 1;
    margin: 0;
}

.inv-hr.short {
    width: 55px;
}

.inv-hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 580px;
}

.inv-hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 10px;
}

.inv-dot {
    width: 28px;
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.inv-dot.active {
    background: #fff;
}

/* ===== SECÇÕES ===== */
.inv-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
}

.inv-section-sub {
    font-size: 1rem;
    color: #111;
    font-weight: 500;
    margin-top: 6px;
    line-height: 1.6;
}

/* ===== VANTAGENS ===== */
.inv-vantagem-card {
    border: 1.5px solid #111;
    border-radius: 50px;
    padding: 32px 24px;
    text-align: center;
    height: 200px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.inv-vantagem-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}

.inv-vantagem-icon {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 16px;
    display: block;
}

.inv-vantagem-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.inv-vantagem-desc {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ===== PROJECTOS ===== */
.inv-projectos-lista {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.inv-projecto-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 0;
}

.inv-projecto-img-col {
    flex-shrink: 0;
    width: 500px;
    position: relative;
}

.inv-projecto-img {
    width: 500px;
    height: 250px;
    object-fit: cover;
    border-radius: 0px;
}

/* Placeholder quando não há imagem */
.inv-img-placeholder {
    width: 260px;
    height: 200px;
    background: #f0f0f0;
    border-radius: 20px;
}

.inv-projecto-body {
    flex: 1;
}

.inv-projecto-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    margin: 0;
}

.inv-badge {
    background: #F5A623;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 4px;
    position: absolute;
    left: 0;
    top: 0;
    margin: 1rem;
}

.inv-projecto-desc {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 10px;
    max-width: 550px;
}

.inv-projecto-invest {
    font-size: 0.92rem;
    color: #111;
    margin-bottom: 6px;
}

.inv-projecto-local {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 4px;
}

.inv-divider {
    border: none;
    border-top: 1.5px solid #eee;
    margin: 0;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .inv-projecto-item {
        flex-direction: column;
        gap: 16px;
    }

    .inv-projecto-img-col {
        width: 100%;
    }

    .inv-projecto-img,
    .inv-img-placeholder {
        width: 100%;
        height: 200px;
    }

    .inv-projecto-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .inv-vantagem-card {
        padding: 24px 16px;
    }

    .inv-section-title {
        font-size: 1.6rem;
    }

    .cal-filtros-bar {
        position: relative;
    }

}
