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

.dp-hero-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.dp-ficha-btn-wrap {
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.dp-ficha-btn {
    border: 1px solid #FFF;
    background: #111;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s ease;
}

.dp-ficha-btn:hover {
    background: #333;
    color: #fff;
}

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

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

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

/* ===== TIPOGRAFIA ===== */
.dp-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
}

.dp-section-sub {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-top: 6px;
}

.dp-body-text {
    font-size: 1rem;
    font-weight: 400;
    color: #111;
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: justify;
}

/* ===== IMAGEM DETALHE ===== */
.dp-detalhe-img {
    width: 80%;
    height: 320px;
    object-fit: cover;
    border-radius: 0px;
}

/* ===== MÉTRICAS ===== */
.dp-metricas {
    padding-top: 28px;
    margin-top: 10px;
}

.dp-metrica-label {
    font-size: 1rem;
    color: #111;
    margin-bottom: 4px;
    font-weight: 700;
}

.dp-metrica-value {
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    margin: 0;
}

/* ===== GALERIA SWIPER ===== */
.dp-galeria-wrapper {
    position: relative;
    padding: 0 50px;
}

.dpGaleriaSwiper {
    width: 100%;
    overflow: hidden;
}

.dp-gal-card {
    border-radius: 0px;
    overflow: hidden;
    height: 300px;
}

.dp-gal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dp-gal-card:hover img {
    transform: scale(1.04);
}

.dp-gal-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1.5px solid #ddd;
    color: #111;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    z-index: 5;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dp-gal-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.dp-gal-prev {
    left: 0;
}

.dp-gal-next {
    right: 0;
}

/* ===== FORMULÁRIO ===== */
.dp-form {
    max-width: 100%;
}

.dp-input {
    width: 100%;
    border: 1.5px solid #111;
    border-radius: 0px;
    padding: 14px 16px;
    font-size: 0.92rem;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.dp-input:focus {
    border-color: #111;
}

.dp-input::placeholder {
    color: #aaa;
}

.dp-select-wrap {
    position: relative;
}

.dp-select {
    cursor: pointer;
    padding-right: 40px;
}

.dp-select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #111;
    font-size: 0.85rem;
    pointer-events: none;
}

.dp-textarea {
    resize: vertical;
    min-height: 140px;
}

.dp-submit-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 0px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.dp-submit-btn:hover {
    background: #333;
}

/* ===== OUTROS PROJECTOS ===== */
.dp-outro-card {
    display: flex;
    gap: 0;
    overflow: hidden;
}

.dp-outro-img-col {
    flex-shrink: 0;
    width: 300px;
}

.dp-outro-img {
    width: 300px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dp-outro-body {
    flex: 1;
    padding: 24px;
}

.dp-outro-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.dp-outro-desc {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.dp-outro-invest {
    font-size: 0.88rem;
    color: #111;
    margin-bottom: 4px;
}

.dp-outro-local {
    font-size: 0.85rem;
    color: #666;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .dp-galeria-wrapper {
        padding: 0 44px;
    }

    .dp-gal-card {
        height: 180px;
    }

    .dp-outro-card {
        flex-direction: column;
    }

    .dp-outro-img-col {
        width: 100%;
    }

    .dp-outro-img {
        width: 100%;
        height: 200px;
    }

    .dp-detalhe-img {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .dp-galeria-wrapper {
        padding: 0 40px;
    }

    .dp-gal-card {
        height: 160px;
    }

    .dp-ficha-btn-wrap {
        top: 16px;
        right: 16px;
    }
}
