/* =====================================================
   PROJETOS EMBLEMÁTICOS – CSS COMPLETO
   Compatível com Elementor + Swiper
   ===================================================== */

/* ===== CONTAINER GERAL ===== */
.zp-projetos-emblematicos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    width: 100%;
    position: relative;
}

/* ===== COLUNA ESQUERDA ===== */
.zp-projetos-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.zp-projetos-right {
    transition: opacity 0.4s ease;
    opacity: 1;
}
.zp-projetos-right.fade-out {
    opacity: 0;
}

/* ===== BOTÃO ANTERIOR ===== */
.zp-nav-prev {
    margin-top: 48px;
}

/* ===== COLUNA CENTRAL (IMAGEM / SWIPER) ===== */
.zp-projetos-center {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    overflow: hidden; /* segurança Swiper */
}

.zp-projetos-center .swiper {
    width: 100%;
    height: 475px;
}

.zp-projetos-center .swiper-wrapper {
    height: 100%;
}

.arrow-mobile {
    display: flex;
}

.zp-projetos-center .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zp-projetos-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ===== COLUNA DIREITA ===== */
.zp-projetos-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: end;
}

/* ===== BOTÃO PRÓXIMO ===== */
.zp-nav-next {
    margin-top: 32px;
    margin-left: auto;
}

/* ===== BOTÕES (GERAL) ===== */
.zp-nav-prev,
.zp-nav-next {
    background: none;
    padding: 0;
    border:none;
    color: #1B1464;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.zp-nav-prev:hover,
.zp-nav-next:hover,
.zp-nav-prev:focus,
.zp-nav-next:focus{
    opacity: 1;
    background:none;
    color: #1B1464;
}

@media (min-width:1025px){
    
    .hide-mobile-arrow{
        display:none !important;
    }
}

@media (max-width: 1024px){
    
    .hide-desktop-arrow{
        display:none !important;
    }
}

/* ===== RESPONSIVO ===== */

@media (max-width: 1024px) {
    .zp-projetos-emblematicos {
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    .zp-nav-next {
        margin-top: 0px;
        margin-left: 0px;
    }

    .zp-nav-prev {
        margin-top: 0px;
        margin-left: 0px;
    }

    .arrow-mobile{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:20px;
        margin-top:30px;
    }

    .arrow-mobile img{
        width:20px;
    }

    .zp-nav-prev, .zp-nav-next {
        gap: 10px;
    }
}