/* ==================================================
   HERO
================================================== */

.predio-hero {

    position: relative;

    height: 65vh;

    min-height: 450px;

}

.predio-hero img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}

.predio-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.65)
        );

}

.predio-overlay .container {

    padding-bottom: 60px;

}

.predio-overlay h1 {

    color: white;

}

.predio-overlay .section-tag {

    background: rgba(255,255,255,.15);

    color: white;

}

/* ==================================================
   CONTEÚDO
================================================== */

.predio-content {

    padding: 100px 0;

}

.predio-text {

    max-width: 900px;

    margin: auto;

}

.predio-text p {

    font-size: 1.05rem;

    text-align: justify;

}

/* ==================================================
   GALERIA
================================================== */

.predio-gallery {

    padding: 100px 0;

    background: var(--color-gray-100);

}

/* ==================================================
   CTA DO PRÉDIO
================================================== */

.predio-cta {

    padding: 100px 0;

    text-align: center;

    background: #f8fafc;

}

.predio-cta .container {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}

.predio-cta h2 {

    margin-bottom: 20px;

}

/* ==================================================
   MAPA
================================================== */

.predio-location {

    padding: 100px 0;

}

.map-box {

    overflow: hidden;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);

}

.map-box iframe {

    width: 100%;

    height: 450px;

    border: none;

}

/* ==================================================
   REFERENCIAS
================================================== */

.references {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #d6d6d6;
}

.references h3 {
    color: #1F3473;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.references p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #5f6d82;
    font-size: 0.95rem;
}

.references a {
    color: #1F3473;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

/* ==================================================
   GALERIA
================================================== */

.predio-gallery {

    padding: 100px 0;

    background: var(--color-gray-100);

}

.predio-gallery h2 {

    text-align: center;

    margin-bottom: 40px;

}

.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 24px;

}

.gallery-card {

    overflow: hidden;

    border-radius: 16px;

    background: white;

    box-shadow:
        0 8px 25px rgba(0,0,0,.08);

}

.gallery-card img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    display: block;

    transition: .4s ease;

}

.gallery-card:hover img {

    transform: scale(1.05);

}