/* Estilos responsivos e melhorias gerais */
.containerPlanta {
    background-color: #262626;
    padding: 60px 0;
}

.containerPlanta h2 {
    color: white;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.ContainerProjetos {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.containerImgDesc {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ContainerReforma {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1 1 60%;
    padding: 20px;
    box-sizing: border-box;
}

.primeiraColumn, .segundaColumn {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.Reforma img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    /* border-radius: 2px; */
}

.descritivoReforma {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1 1 30%;
    border: 1px solid rgba(255, 255, 255, 0.524);
    padding: 25px;
    box-sizing: border-box;
}

.descritivoReforma ol {
    padding-left: 20px;
    margin-top: 10px;
    color: #e0e0e0;
}

.descritivoReforma ol li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.btnPort {
    display: inline-block;
    background-color: #1C66A6;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 6px;
    margin-top: 20px;
}

.btnPort:hover {
    background-color: #2382d5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 141, 209, 0.4);
}

@media (max-width: 1024px) {
    .containerImgDesc {
        flex-direction: column;
    }
    .ContainerReforma, .descritivoReforma {
        flex: 1 1 100%;
        padding: 10px;
        width: 80%;
    }
    .containerPlanta h2 {
        font-size: 1.6rem;
    }
}

@media (min-width: 2000px) {
    .containerPlanta h2 {
        font-size: 2.5rem;
    }
    .descritivoReforma {
        font-size: 1.2rem;
    }
}